:root {
  --white: #fff;
  --periwinkle: #7066ED;
  --Darker:rgb(26, 26, 27);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Mouser;
  src: url(../Font/mouser/Mouser.ttf);
}
@font-face {
  font-family: Peyda;
  src: url(../Font/Peyda/Peyda-Medium[@mimvid].ttf);
}
@font-face {
  font-family: sharnay;
  src: url(../Font/sharnay/sharnay-extrabold.ttf);
}
body {
  font-family: "sharnay", "Mouser", "Peyda";
}

.Body {
  display: flex;
  align-items: end;
  justify-content: center;
  align-content: end;
  width: 100%;
  height: 100vh;
  background-color: var(--Darker);
}

.Container {
  width: 100%;
  height: 50vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: space-between;
  margin-bottom: 5rem;
}
.Container__Main__Typing {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.Container__Main__Typing > h1 {
  color: rgb(43, 221, 8);
  letter-spacing: 7px;
  font-size: 3em;
  box-shadow: 10px 0 0 rgb(18, 180, 18);
  text-shadow: 0 0 12px rgba(49, 250, 8, 0.548);
  overflow-x: hidden;
  animation: Text_Effect 5s steps(13) infinite, BoxShadow 700ms linear infinite;
}
.Container__Main__More {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
.Container__Main__More > h2 {
  width: 100%;
  text-align: center;
  letter-spacing: 15px;
  background: -webkit-linear-gradient(45deg, #7bff00, #00ff37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: Text2 2s 0s;
  margin: 1.5rem 0;
}
.Container__Main__More > h3 {
  color: white;
  font-size: 1.5em;
}
.Container__Footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  gap: 10px;
}
.Container__Footer > img {
  width: 25px;
  height: 25px;
}
.Container__Footer > a {
  text-align: center;
  text-decoration: none;
  color: #7bff00;
  letter-spacing: 4px;
}

@keyframes Text_Effect {
  0%, 90%, 100% {
    width: 0%;
  }
  30%, 60% {
    width: 400px;
  }
}
@keyframes BoxShadow {
  0%, 80%, 100% {
    box-shadow: 10px 0 0 transparent;
  }
  30%, 70% {
    box-shadow: 10px 0 0 rgb(18, 180, 18);
  }
}/*# sourceMappingURL=Comming Soon.css.map */